home *** CD-ROM | disk | FTP | other *** search
/ OpenGL Superbible (2nd Edition) / OpenGL SuperBible e2.iso / tools / GLUT-3.7 / PROGS / DEMOS / BOUNCE / Imakefile < prev    next >
Encoding:
Makefile  |  1998-08-12  |  603 b   |  27 lines

  1.  
  2. /* Copyright (c) Mark J. Kilgard, 1994. */
  3.  
  4. #include "../../../Glut.cf"
  5.  
  6. TARGETS = bounce
  7.  
  8. SRCS = bounce.c glui.c tb.c trackball.c
  9.  
  10. AllTarget($(TARGETS))
  11.  
  12. NormalGlutProgramTarget(bounce,bounce.o glui.o tb.o trackball.o)
  13.  
  14. LinkFile(trackball.c, ../../examples/trackball.c)
  15. LinkFile(trackball.h, ../../examples/trackball.h)
  16. LinkFile(tb.c, ../smooth/tb.c)
  17. LinkFile(tb.h, ../smooth/tb.h)
  18.  
  19. trackball.o: trackball.h
  20. tb.o: tb.h trackball.h
  21. bounce.o: tb.h glui.c glui.h
  22.  
  23. /* some old imake configs do setup "make depend" dependencies on linked files */
  24. depend:: trackball.c trackball.h tb.c tb.h
  25.  
  26. DependTarget()
  27.